home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 1.iso / ARGONET / PD / SOUND / REPLAYER.SPK / s / veneer
Text File  |  1998-08-11  |  348b  |  19 lines

  1.  
  2.  AREA    |C$$code|, CODE, READONLY
  3.  
  4.  
  5. ; This is a simple veneer to call the entry points in the sound
  6. ; drivers for Acorn Replay.  It takes the address of the entry point to
  7. ; call in r2, and two parameters to the driver in r0 and r1.
  8.  
  9.  EXPORT replaydriver_veneer
  10.  
  11. replaydriver_veneer
  12.  stmfd    sp!, {lr}
  13.  mov    lr, pc
  14.  mov    pc, r2
  15.  ldmfds    sp!, {pc}
  16.  
  17.  
  18.  END
  19.